home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / dbase / do1beta.zip / SPLIT.DO < prev    next >
Text File  |  1991-07-25  |  235b  |  8 lines

  1. /*
  2.     demonstrate the String::split() method for splitting
  3.     a filename string into path, root, extension
  4. */
  5. fullname = disk()+"\\test.do";
  6. ? "full path and name is ",fullname;
  7. ? "split into 3-String Collection: ",split(fullname);
  8.